body {
    margin: 0;
    background-color: #373737;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h2 {
    margin-top: 2.5rem;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
}

.text-error {
    display: none;
    color: #E2B501;
    text-align: center;
    font-size: 1.5rem;
}

#text-error-container {
    margin-top: -5rem;
}

#divider {
    background-image: linear-gradient(to right, #373737, #03B261 50%, #373737);
    width: 100%;
    height: 0.75rem;
    box-shadow: 0px 10px 25px #000000BF;
    /* margin-bottom: 5rem; */
}

#content-container {
    max-width: 1000px;
    margin: 0 auto;
}

button {
    display: block;
    margin: 2.5rem auto;
    padding: 1.25rem 0;
    background-color: #646464;
    width: 50%;
    color: white;
    box-shadow: 0px 20px 30px #000000BE;
    font-size: 1.5rem;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    -webkit-border: none;
    font-family: inherit;
}

input {
    -webkit-appearance: none;
    appearance: none;
}

.btn-icon {
    background-color: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    width: auto;
}

#confirm {
    width: 15%;
    min-width: 25%;
    margin-top: 5rem;
    padding: 0.5rem 0;
    border-radius: 32px;
    border: none;;
    box-shadow: none;
    color: black;
}

#calibration-container {
    display: none;
    text-align: center;
    color: #03B261;
    margin-top: 5rem;

    h4 {
        cursor: pointer;
        margin: 1rem 0;
        font-size: 1.5rem;
        font-weight: 200;
    }
}

#calibration-loader-container {
    width: 50%;
    margin: 0 auto;
    height: 2rem;
    background-color: #646464;
    overflow: hidden;
}

#calibration-loader {
    background-color: #03B261;
    width: 20%;
    height: 100%;
}

#fault-215-warning {
    width: 100%;
    display: none;
    justify-content: center;

    button > span {
        color: red;
        font-size: 5rem;
    }
}

#keypad-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    /* padding: 0 2.5rem; */
    background-color: #1C1C1C;
    color: white;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    height: 100%;

    h4 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 2.5rem;
        margin: auto 0;
        padding-top: 0.75rem;
    }

    .input-container {
        display: flex;
        flex-direction: column;
        margin: 1rem;
        width: 6rem;

        input {
            height: 3rem;
            background-color: #646464;
            color: white;
            font-size: 1.5rem;
            text-align: center;
            border: none;

            &:focus {
                border: 1px solid #E2B501 !important;
            }
        }
    }

    #keypad {
        margin: 0 auto;
    }

    .btn-keypad {
        margin: 0.25rem;
        width: 5.5rem;
        border-radius: 20px;
        border: none;
        background-color: #444444;
        box-shadow: none;
    }

    #btn-confirm, #btn-cancel {
        width: 10rem;
        padding: 0.5rem;
        border-radius: 32px;
        box-shadow: none;
        border: none;
    }

    #btn-confirm {
        background-color: #E2B501;
        color: black;
        margin-left: 9rem;
    }

    #btn-cancel {
        background-color: transparent;
        color: #E2B501;
        margin-right: 9rem;
    }
}